HS_DYNAMIC_FORCE_RVS_START

HS_DYNAMIC_FORCE_RVS_START

SYNTAX:

       HS_DYNAMIC_FORCE_RVS_START(RVS_NO, TRIGGER_MODE, START_LABEL, AWG_COUNT [, OFFSET=x]  [, WAIT=x] [, ALL_SITE_ON/FAIL_SITE_ONLY/PLAN_FAIL_SITE_ONLY]]);

        NOTE: The argument which can use _C_Variable (RVS_NO, TRIGGER_PIN, START_LABEL)

DESCRIPTION:

        Setting HS RVS start dynamic force voltage

REQUIRED ARGUMENT:

        PARA1: RVS_NO

            HS_RVS33~48,HS_RVS65~80,HS_RVS97~112 or power_source_name(string) that has been defined in the PRJ file. Or _C_Variable

            Option: expand for 128RVS

            HS_RVS_EXT65~80,HS_RVS_EXT129~144,HS_RVS_EXT193~208,HS_RVS161~176,HS_RVS_EXT321~336

        PARA2: TRIGGER_MODE

    Set the trigger mode. It can be set PTN_TRIG, BP_TRIG1~4

    PTN_TRIG: Trigger signal is from pattern Micro Instruction

                   When using dynamic force/measure with PTN_TRIG, user must define at least one IO pin of utilized dynamic resource slot in PRJ pin define table per site.

    BP_TRIG1~4: Trigger signal is from BackPlane trigger signal 1~4.  

        PARA3: START_LABEL

            Set the start address label that is defined in the AWG file for dynamic force.

            [Syntax：AWG_FILE_NAME:LABEL_NAME]

            Label name or _C_Variable 

            In awg file, the START_LABEL must be set in the first row of value.      

        PARA4: AWG_COUNT

            Set the trigger count in AWG file.  "Offset" + "AWG_Count" ≤  "Total DAC code in awg file"

            Range: 1~512

OPTIONAL ARGUMENT:

        PARA: OFFSET=x

            Set the Offset counts after start label address

            Default: 0

        PARA: WAIT=x

            Wait time between force and measure.

            x range:GB1~64/MEASURE_VALUE/PinName variable or _C_Variable or parameter name,range:10us-200s; 

            Default: 0ms, Resolution=10us.

        PARA: ALL_SITE_ON/FAIL_SITE_ONLY/PLAN_FAIL_SITE_ONLY

            ALL_SITE_ON: Set driver executed on every site, even on the fail site.

            FAIL_SITE_ONLY: Driver executed on the fail site only.

            PLAN_FAIL_SITE_ONLY: Driver executed on the fail site ,it will occurs at this plan Fail site only.

            Default: Driver executed on the pass site only.

EXAMPLE:      

        HS_CLOSE_RVS_OUTPUT_RELAY(HS_RVS33,ON,WAIT=3mS);

        WAIT(3MS);

        HS_FORCE_RVS(HS_RVS33, FORCE_V, 4.9V, 5.0mA, E1, I3);

        WAIT(1MS);        

          HS_DYNAMIC_FORCE_RVS_START(HS_RVS33, PTN_TRIG, FORCE_AWG:START, 128);

        RUN_PATTERN(DYNAMIC_SD:ST, DYNAMIC_SD:SP, 1, 3);

        HS_DYNAMIC_FORCE_RVS_STOP(HS_RVS33);

        In Awg file:FORCE_AWG.awg                    In Pattern file:DYNAMIC_SD.SD                     

        AWG_TYPE = HS_RVS;                              //  CCCCCCCC                                 

                                                                    //  HHHHHHHH                                 

                                                                    //  987654321                                

                                                                    //==============                             

        START: 4.9                                           ST:  000000001; PTN_TRIG; // RVS_Dirve=4.9V

                   4.905                                               000000010;
                   4.91                                                 000000001; PTN_TRIG; // RVS_Dirve=4.905V

                   4.915                                               000000010;
                   4.92                                                 000000001; PTN_TRIG; // RVS_Dirve=4.91V

                   4.925                                               000000010;
                   4.93                                                 000000001; PTN_TRIG; // RVS_Dirve=4.915V

                   4.935                                               000000010;
                   4.94                                                 000000001; PTN_TRIG; // RVS_Dirve=4.92V

                   4.945                                         SP:  000000010;                                

                   4.95                                                 000000000;                              

        END:     5